From af56dc7eed8128c5ffb1d6d14d9f74637c796bfa Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 7 Apr 1993 20:25:14 +0000 Subject: [PATCH] (UNBLOCK_INPUT): Fix typo. --- src/blockinput.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/blockinput.h b/src/blockinput.h index f02cb5ce85e..0571a648107 100644 --- a/src/blockinput.h +++ b/src/blockinput.h @@ -59,7 +59,7 @@ extern int interrupt_input_pending; #define UNBLOCK_INPUT \ (interrupt_input_blocked--, \ (interrupt_input_blocked < 0 ? (abort (), 0) : 0), \ - ((interrupt_input_blocked == 0 && interupt_input_pending != 0) \ + ((interrupt_input_blocked == 0 && interrupt_input_pending != 0) \ ? (kill (0, SIGIO), 0) \ : 0)) #else -- 2.30.2